home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / mklfs / RCS / getMachineInfo.h,v < prev    next >
Encoding:
Text File  |  1991-05-31  |  1.1 KB  |  55 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     91.05.31.11.09.55;  author mendel;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Interface to Subroutine to return machine attributes needed to make a lfs 
  17. file system
  18. @
  19.  
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @/*
  28.  * getMachineInfo.h --
  29.  *
  30.  *    Declarations of the interface to the GetMachineInfo routine.
  31.  *
  32.  * Copyright 1991 Regents of the University of California
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that this copyright
  36.  * notice appears in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  *
  41.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.7 91/02/09 13:24:52 ouster Exp $ SPRITE (Berkeley)
  42.  */
  43.  
  44. #ifndef _GETMACHINEINFO
  45. #define _GETMACHINEINFO
  46.  
  47. #include <cfuncproto.h>
  48.  
  49.  
  50. extern void GetMachineInfo _ARGS_((int *serverIDPtr, int *maxNumCacheBlocksPtr));
  51.  
  52. #endif /* _GETMACHINEINFO */
  53.  
  54. @
  55.